home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Developer's Kit 1996
/
Delphi Developer's Kit 1996.iso
/
power
/
srctt26
/
about.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1995-12-22
|
770b
|
43 lines
unit About;
interface
uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons, ExtCtrls, AnaClock, Stamps;
type
TAboutBox = class(TForm)
Panel1: TPanel;
OKButton: TBitBtn;
ProductName: TLabel;
Version: TLabel;
Copyright: TLabel;
Comments: TLabel;
AnalogClock1: TAnalogClock;
TimeStamp1: TTimeStamp;
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
procedure Panel1DblClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
AboutBox: TAboutBox;
implementation
{$R *.DFM}
procedure TAboutBox.Panel1DblClick(Sender: TObject);
begin
TimeStamp1.Visible := not TimeStamp1.Visible;
end;
end.